home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP19 / SHOWBIT.C < prev    next >
C/C++ Source or Header  |  1995-12-31  |  4KB  |  123 lines

  1. /*-----------------------------------------------------------
  2.    SHOWBIT.C -- Shows bitmaps in BITLIB dynamic link library
  3.                 (c) Charles Petzold, 1996
  4.   -----------------------------------------------------------*/
  5.  
  6. #include <windows.h>
  7.  
  8. LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;
  9.  
  10. int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
  11.                     PSTR szCmdLine, int iCmdShow)
  12.      {
  13.      static char  szAppName[] = "ShowBit" ;
  14.      HWND         hwnd ;
  15.      MSG          msg ;
  16.      WNDCLASSEX   wndclass ;
  17.  
  18.      wndclass.cbSize        = sizeof (wndclass) ;
  19.      wndclass.style         = CS_HREDRAW | CS_VREDRAW ;
  20.      wndclass.lpfnWndProc   = WndProc ;
  21.      wndclass.cbClsExtra    = 0 ;
  22.      wndclass.cbWndExtra    = 0 ;
  23.      wndclass.hInstance     = hInstance ;
  24.      wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;
  25.      wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;
  26.      wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;
  27.      wndclass.lpszMenuName  = NULL ;
  28.      wndclass.lpszClassName = szAppName ;
  29.      wndclass.hIconSm       = LoadIcon (NULL, IDI_APPLICATION) ;
  30.  
  31.      RegisterClassEx (&wndclass) ;
  32.  
  33.      hwnd = CreateWindow (szAppName, "Show Bitmaps from BITLIB (Press Key)",
  34.                           WS_OVERLAPPEDWINDOW,
  35.                           CW_USEDEFAULT, CW_USEDEFAULT,
  36.                           CW_USEDEFAULT, CW_USEDEFAULT,
  37.                           NULL, NULL, hInstance, NULL) ;
  38.  
  39.      ShowWindow (hwnd, iCmdShow) ;
  40.      UpdateWindow (hwnd) ;
  41.  
  42.      while (GetMessage (&msg, NULL, 0, 0))
  43.           {
  44.           TranslateMessage (&msg) ;
  45.           DispatchMessage (&msg) ;
  46.           }
  47.      return msg.wParam ;
  48.      }
  49.  
  50. void DrawBitmap (HDC hdc, int xStart, int yStart, HBITMAP hBitmap)
  51.      {
  52.      BITMAP bm ;
  53.      HDC    hMemDC ;
  54.      POINT  pt ;
  55.  
  56.      hMemDC = CreateCompatibleDC (hdc) ;
  57.      SelectObject (hMemDC, hBitmap) ;
  58.      GetObject (hBitmap, sizeof (BITMAP), (PSTR) &bm) ;
  59.      pt.x = bm.bmWidth ;
  60.      pt.y = bm.bmHeight ;
  61.  
  62.      BitBlt (hdc, xStart, yStart, pt.x, pt.y, hMemDC, 0, 0, SRCCOPY) ;
  63.  
  64.      DeleteDC (hMemDC) ;
  65.      }
  66.  
  67. LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
  68.      {
  69.      static HINSTANCE  hLibrary ;
  70.      static int        iCurrent = 1 ;
  71.      HBITMAP           hBitmap ;
  72.      HDC               hdc ;
  73.      PAINTSTRUCT       ps ;
  74.  
  75.      switch (iMsg)
  76.           {
  77.           case WM_CREATE :
  78.                if ((hLibrary = LoadLibrary ("BITLIB.DLL")) == NULL)
  79.                     DestroyWindow (hwnd) ;
  80.  
  81.                return 0 ;
  82.  
  83.           case WM_CHAR :
  84.                if (hLibrary)
  85.                     {
  86.                     iCurrent ++ ;
  87.                     InvalidateRect (hwnd, NULL, TRUE) ;
  88.                     }
  89.                return 0 ;
  90.  
  91.           case WM_PAINT :
  92.                hdc = BeginPaint (hwnd, &ps) ;
  93.  
  94.                if (hLibrary)
  95.                     {
  96.                     if (NULL == (hBitmap = LoadBitmap (hLibrary,
  97.                                              MAKEINTRESOURCE (iCurrent))))
  98.                          {
  99.                          iCurrent = 1 ;
  100.                          hBitmap = LoadBitmap (hLibrary,
  101.                                              MAKEINTRESOURCE (iCurrent)) ;
  102.                          }
  103.  
  104.                     if (hBitmap)
  105.                          {
  106.                          DrawBitmap (hdc, 0, 0, hBitmap) ;
  107.                          DeleteObject (hBitmap) ;
  108.                          }
  109.                     }
  110.  
  111.                EndPaint (hwnd, &ps) ;
  112.                return 0 ;
  113.  
  114.           case WM_DESTROY :
  115.                if (hLibrary)
  116.                     FreeLibrary (hLibrary) ;
  117.  
  118.                PostQuitMessage (0) ;
  119.                return 0 ;
  120.           }
  121.      return DefWindowProc (hwnd, iMsg, wParam, lParam) ;
  122.      }
  123.